home *** CD-ROM | disk | FTP | other *** search
/ Trusted Irix /B 4.0.4 / Trusted-Irix B-4.0.1.iso / dist / eoe1.idb / etc / halt.z / halt
Text File  |  1992-04-03  |  327b  |  25 lines

  1. #! /bin/sh -e
  2. #Tag 0x00000f00
  3. #
  4. # Reboot the system--stop the system and leave it 'in the PROM'
  5. #
  6. # $Revision: 1.3 $"
  7. #
  8.  
  9. if test -n "$REMOTEHOST"; then
  10.     echo "Halt `hostname`?  \c"
  11.     read reply
  12.     case "$reply" in
  13.     [yY]*)
  14.         ;;
  15.     *)
  16.         echo "'Halt' cancelled."
  17.         exit 0
  18.         ;;
  19.     esac
  20. fi
  21.  
  22. /etc/shutdown -y -g0 -i0
  23.  
  24. sleep 10 2> /dev/null
  25.